```javascript
/**
 * moduleA.js - A sample module for testing.
 */

export function greet(name) {
  return `Hello, ${name}!`;
}

export const farewell = "Goodbye!";

const internalHelper = () => {
  // Not exported
  return Math.random();
}; 
```